home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / editor / blksedtr.lha / BED / Rexx / DeleteFile.bed < prev    next >
Text File  |  1996-05-06  |  329b  |  19 lines

  1. /*
  2. **
  3. ** $VER: DeleteFile.bed 1.0 (17.04.96)
  4. **
  5. ** DeleteFile.bed - By Gerbert Nuijen
  6. **
  7. ** Simple script to delete a file, I really missed this option :)
  8. **
  9. */
  10.  
  11. OPTIONS RESULTS
  12.  
  13. GetFilePath PATH
  14. fpath = RESULT
  15.  
  16. 'RequestFile TITLE="Delete File..." OKGADGET=Delete PATH=' || fpath
  17. ADDRESS COMMAND 'Delete ' || RESULT || ' QUIET'
  18.  
  19.